=======
>>>>>>> 3e0ab13596212d4fe960010623ecb46bed21d94b
# looping through data indices. find the max
B = [1, 4, 6, 7, 89, 54]
big_indx = 0
for i in range(len(B)):
if B[i] > B[big_indx]:
big_indx = i
print('The max value in B is', B[big_indx], 'found on position', big_indx)The max value in B is 89 found on position 4